<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* LOADING PAGE */
    
.loading-page{
    position:fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    background: linear-gradient(135deg, black, rgb(199, 13, 50)) no-repeat;
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}


#svg{
    height: 150px;
    width: 150px;
    stroke: #fff;
    fill-opacity: 0;
    stroke-width: 3px;
    stroke-dasharray: 4500;
    animation: draw 6s ease;
}

@keyframes draw{
    0%{
        stroke-dashoffset: 4500;
    }
    100% {
        stroke-dashoffset: 0;
    }
}

.name-container{
    height: 30px;
    overflow: hidden;


}

.logo-name{
    color: white;
    font-size: 20px;
    letter-spacing: 12px;
    text-transform: uppercase;
    margin-left: 20px;

}

.preloader {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 9999;
}

.preloader {
    animation: fade-out 1s ease-in-out forwards;
}

@keyframes fade-out {
    from {
    opacity: 1;
    }
    to {
    opacity: 0;
    visibility: hidden;
}
}</pre></body></html>